home *** CD-ROM | disk | FTP | other *** search
- /*******************************************************************
- * BGetTCLInfo.h
- *
- * Dialog class which prompts user for information and then return his input.
- *
- * © copyright 1992, KSS Scientific Consultants.
- *
- ******************************************************************/
-
- #pragma once
-
- #include <CDLOGDirector.h>
-
- class BGetTCLInfo : public CDLOGDirector
- {
- private:
- Str255 fReturnStr;
-
- public:
- void IBGetTCLInfo(short DLOGid, CDirectorOwner *aSupervisor);
-
- virtual void GetInfo(char *promptPtr, char *returnPtr);
-
- protected:
- virtual void DoCommand(long theCommand);
- };
-